CallFrame

data class CallFrame(callFrameId: CallFrameId, functionName: String, functionLocation: Location?, location: Location, url: String, scopeChain: List<Scope>, _this: RemoteObject, returnValue: RemoteObject?)

JavaScript call frame. Array of call frames form the call stack.

Constructors

CallFrame
Link copied to clipboard
fun CallFrame(callFrameId: CallFrameId, functionName: String, functionLocation: Location? = null, location: Location, url: String, scopeChain: List<Scope>, _this: RemoteObject, returnValue: RemoteObject? = null)

Properties

_this
Link copied to clipboard
val _this: RemoteObject
this object for this call frame.
callFrameId
Link copied to clipboard
val callFrameId: CallFrameId
Call frame identifier.
functionLocation
Link copied to clipboard
val functionLocation: Location? = null
Location in the source code.
functionName
Link copied to clipboard
val functionName: String
Name of the JavaScript function called on this call frame.
location
Link copied to clipboard
val location: Location
Location in the source code.
returnValue
Link copied to clipboard
val returnValue: RemoteObject? = null
The value being returned, if the function is at return point.
scopeChain
Link copied to clipboard
val scopeChain: List<Scope>
Scope chain for this call frame.
url
Link copied to clipboard
val url: String
JavaScript script name or url.

Sources

jvm source
Link copied to clipboard